In [1]:
%matplotlib inline
import pandas as pd
from stemgraphic import stem_graphic
Load a data frame
In [2]:
df = pd.read_csv('../iris.csv')
In [3]:
df.describe()
Out[3]:
Select a column, or pass the whole dataframe if you want stem_graphic to select the first numerical column.
In [4]:
stem_graphic(df['sepal_length']);